home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Die Ultimative Software-P…i Collection 1996 & 1997
/
Die Ultimative Software-Pakete CD-ROM fur Atari Collection 1996 & 1997.iso
/
g
/
gnu_c
/
incl98.zoo
/
utsname.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1993-02-20
|
428 b
|
30 lines
/*
* sys/utsname.h - header for uname emulation
* Written by Dave Gymer and placed in the public domain.
*/
#ifndef _UTSNAME_H
#define _UTSNAME_H
#include <compiler.h>
#ifdef __cplusplus
extern "C" {
#endif
struct utsname {
char sysname[9];
char nodename[9];
char release[9];
char version[9];
char machine[9];
};
__EXTERN int uname __PROTO((struct utsname *));
#ifdef __cplusplus
}
#endif
#endif /* _UTSNAME_H */